1   /*
2    * Copyright (c) 2003, 2005, Oracle and/or its affiliates. All rights reserved.
3    * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4    *
5    * This code is free software; you can redistribute it and/or modify it
6    * under the terms of the GNU General Public License version 2 only, as
7    * published by the Free Software Foundation.  Oracle designates this
8    * particular file as subject to the "Classpath" exception as provided
9    * by Oracle in the LICENSE file that accompanied this code.
10   *
11   * This code is distributed in the hope that it will be useful, but WITHOUT
12   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14   * version 2 for more details (a copy is included in the LICENSE file that
15   * accompanied this code).
16   *
17   * You should have received a copy of the GNU General Public License version
18   * 2 along with this work; if not, write to the Free Software Foundation,
19   * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20   *
21   * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22   * or visit www.oracle.com if you need additional information or have any
23   * questions.
24   */
25  
26  package com.sun.imageio.plugins.bmp;
27  
28  import java.util.ListResourceBundle;
29  import javax.imageio.metadata.IIOMetadataFormat;
30  import javax.imageio.metadata.IIOMetadataFormatImpl;
31  
32  public class BMPMetadataFormatResources extends ListResourceBundle {
33  
34      public BMPMetadataFormatResources() {}
35  
36      protected Object[][] getContents() {
37          return new Object[][] {
38  
39          // Node name, followed by description
40          { "BMPVersion", "BMP version string" },
41          { "Width", "The width of the image" },
42          { "Height","The height of the image" },
43          { "BitsPerPixel", "" },
44          { "PixelsPerMeter", "Resolution in pixels per unit distance" },
45          { "X", "Pixels Per Meter along X" },
46          { "Y", "Pixels Per Meter along Y" },
47          { "ColorsUsed",
48            "Number of color indexes in the color table actually used" },
49          { "ColorsImportant",
50            "Number of color indexes considered important for display" },
51          { "Mask",
52            "Color masks; present for BI_BITFIELDS compression only"},
53  
54          { "Intent", "Rendering intent" },
55          { "Palette", "The color palette" },
56  
57          { "Red", "Red Mask/Color Palette" },
58          { "Green", "Green Mask/Color Palette/Gamma" },
59          { "Blue", "Blue Mask/Color Palette/Gamma" },
60          { "Alpha", "Alpha Mask/Color Palette/Gamma" },
61  
62          { "ColorSpaceType", "Color Space Type" },
63  
64          { "X", "The X coordinate of a point in XYZ color space" },
65          { "Y", "The Y coordinate of a point in XYZ color space" },
66          { "Z", "The Z coordinate of a point in XYZ color space" },
67          };
68      }
69  }